home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d18 / shrink12.arc / README < prev    next >
Text File  |  1989-03-10  |  4KB  |  93 lines

  1.  
  2.    Shrink v1.2 (C) Copyright 1989 by R. P. Byrne
  3.  
  4.    The Shrink program included in this package is a Turbo Pascal (v5.0)
  5.    implementation of a ZIP archive maker.  The archives produced by the
  6.    Shrink program are compatible with those created by PKWare's PKZIP
  7.    program.
  8.  
  9.    At this time, only two of the six compression methods used by PKZIP have
  10.    been implemented.  Input files are compressed using the "shrinking"
  11.    method.  If shrinking does not produce a file smaller than the original,
  12.    the input file will be "stored" into the ZIP archive with no compression
  13.    applied.
  14.  
  15.    The syntax for the Shrink program is:
  16.  
  17.       Shrink [d:][\path\]zipname[.zip] [[d:][\path\]filespec [...]]
  18.  
  19.    where 'zipname' is the name of the ZIP file to be created, and
  20.    'filespec' epresents a DOS file specification (wildcards are allowed)
  21.    limiting the files to be included in the archive.
  22.  
  23.    The only command line parameter that is required is the name of the ZIP
  24.    file to be processed.  If no filename extension is supplied, '.ZIP' is
  25.    assumed.  If no outpath is specified, the current drive/subdirectory
  26.    will be used.  If no filespec(s) are entered, '*.*' will be assumed.
  27.  
  28.    Examples:
  29.  
  30.       *  Create a ZIP archive called OneFile.Zip that contains all '.pas'
  31.          files in the subdirectory e:\work:
  32.  
  33.                      Shrink OneFile.Zip e:\work\*.pas
  34.  
  35.       *  Create a ZIP archive called OneFile.Zip that contains all files in
  36.          the current subdirectory:
  37.  
  38.                               Shrink OneFile
  39.  
  40. ──────────────────────────────────────────────────────────────────────────
  41.  
  42.                                LICENSE
  43.  
  44. ──────────────────────────────────────────────────────────────────────────
  45.  
  46.      The SHRINK source and binaries ("software") are copyrighted. However,
  47. I am distributing this software for free and you are licensed to use this
  48. software without any charge.
  49.  
  50.      Redistribution of this software is encouraged.  Please do share it
  51. with your friends, upload it to bulletin board systems, etc.  However, as I
  52. am making this software available for free, you must do the same. You are
  53. not permitted by this license to request or accept any remuneration of any
  54. kind for this software.  This prohibition extends to including my software
  55. with any other product or service for which money is charged.
  56.  
  57.      The only exceptions to this "don't charge for what I'm giving away for
  58. free" restriction are as follows:
  59.  
  60.      (1) Bulletin board systems or other electronic information services
  61. are permitted to make this software available for download and charge their
  62. customary fees, if any, for access to the service.
  63.  
  64.      (2) Users groups and other not-for-profit organizations that
  65. distribute this software may charge a reasonable fee to cover duplication
  66. and related costs.
  67.  
  68.      (3) There may be other situations not covered by this license where
  69. some charge for distribution would be appropriate.  Contact me and we'll
  70. talk about it.  But, this license does not authorize any such distribution
  71. without express, written permission from me in advance.
  72.  
  73.      You may distribute modified copies of my source and resulting
  74. executables (including programs derived from mine in other languages or for
  75. other operating systems) so long as you do so for free and pursuant to a
  76. license no more restrictive than this one.  You must state that your
  77. software was derived from mine.  But, please take credit for your
  78. improvements and blame for your mistakes by making it as clear as possible
  79. what changes you have made.
  80.  
  81.      Except as provided above, if you do wish to charge for my software or
  82. for any software derived from mine, then you must contact me for prior
  83. permission.  In short, if you're going to ask for money, then we're going
  84. to share in whatever you receive.  That's only fair.
  85.  
  86.      This software is distributed without warranties of any kind, express
  87. or implied, including, but not limited to, the implied warranties of
  88. merchantability and fitness for a particular purpose.
  89.  
  90.                                                          rpb
  91.                                                        03/11/89
  92.  
  93.